runtime.g.syscallsp (field)
33 uses
runtime (current package)
cgocall.go#L335: savedsp := unsafe.Pointer(gp.syscallsp)
heapdump.go#L342: if gp.syscallsp != 0 {
heapdump.go#L343: sp = gp.syscallsp
mgcmark.go#L846: if gp.syscallsp != 0 {
mgcmark.go#L847: sp = gp.syscallsp // If in a system call this is the stack pointer (gp.sched.sp can be 0 in this case on Windows).
panic.go#L1439: if status&^_Gscan != _Grunning || gp.syscallsp != 0 {
proc.go#L2397: gp.syscallsp = gp.sched.sp
proc.go#L4408: gp.syscallsp = sp
proc.go#L4417: if gp.syscallsp < gp.stack.lo || gp.stack.hi < gp.syscallsp {
proc.go#L4419: print("entersyscall inconsistent sp ", hex(gp.syscallsp), " [", hex(gp.stack.lo), ",", hex(gp.stack.hi), "]\n")
proc.go#L4555: gp.syscallsp = gp.sched.sp
proc.go#L4558: if gp.syscallsp < gp.stack.lo || gp.stack.hi < gp.syscallsp {
proc.go#L4561: sp3 := gp.syscallsp
proc.go#L4568: if gp.syscallsp < gp.stack.lo || gp.stack.hi < gp.syscallsp {
proc.go#L4570: print("entersyscallblock inconsistent sp ", hex(sp), " ", hex(gp.sched.sp), " ", hex(gp.syscallsp), " [", hex(gp.stack.lo), ",", hex(gp.stack.hi), "]\n")
proc.go#L4622: if getcallersp() > gp.syscallsp {
proc.go#L4668: gp.syscallsp = 0
proc.go#L4698: gp.syscallsp = 0
proc.go#L5453: if mp.ncgo > 0 && mp.curg != nil && mp.curg.syscallpc != 0 && mp.curg.syscallsp != 0 {
proc.go#L5469: u.initAt(mp.curg.syscallpc, mp.curg.syscallsp, 0, mp.curg, unwindSilentErrors)
runtime2.go#L438: syscallsp uintptr // if status==Gsyscall, syscallsp = sched.sp to use during gc
stack.go#L869: if gp.syscallsp != 0 {
stack.go#L994: gp.syscallsp = morebuf.sp
stack.go#L1160: if gp.syscallsp != 0 {
traceback.go#L152: if gp.syscallsp != 0 {
traceback.go#L154: sp0 = gp.syscallsp
traceback.go#L223: isSyscall := frame.pc == pc0 && frame.sp == sp0 && pc0 == gp.syscallpc && sp0 == gp.syscallsp
traceback.go#L825: if iscgo && gp.m != nil && gp.m.ncgo > 0 && gp.syscallsp != 0 && gp.m.cgoCallers != nil && gp.m.cgoCallers[0] != 0 {
traceback.go#L843: sp = gp.syscallsp
tracestack.go#L111: if gp.syscallsp != 0 {
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |